.home-hero-section{
    
background: var(--bg-gradient-2);
display: flex;

margin: 5vw;
border-radius: 30px;
box-shadow: 1px 1px 10px var(--black);
}

.left-column{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 5vw;
    background-color: var(--blacktranslucent);
    border-radius: 30px 0 0 30px;
}
.home-hero-image{
    width: 30vw;
    height: auto;
    object-fit: cover;
    transition: all .3s ease-in-out;
    border-radius: 0 30px 30px 0;
    

}
.home-hero-image:hover{
    transform: scale(.9);
    border-radius: 30px;
    
    
}
.right-column{
    display: flex;
    justify-content: center;
    align-items: center;
}

.layout-wrapper {
    background-color: var(--periwinkle);
}
.home-hero-button{
    max-width: 25%;
}

@media (orientation: portrait) {
    .home-hero-section{
        flex-direction: column;
    }
    .home-hero-button{
        max-width: 100%;
    }
    .home-hero-image{
        width: 69vw;
        height: auto;
        border-radius: 0 0 0 0;
    }
    .left-column{
        border-radius: 30px 30px 0 0;
    }
    .right-column{
        border-radius: 0 0 30px 30px;
    }
}